Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sweet-monads/interfaces

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sweet-monads/interfaces

Monad interfaces

  • 1.3.1
  • npm
  • Socket score

Version published
Weekly downloads
7.2K
increased by23.8%
Maintainers
1
Weekly downloads
 
Created
Source

@sweet-monads/interfaces

Collection of interfaces which describe functional programming abstractions.

This library belongs to sweet-monads project

sweet-monads — easy-to-use monads implementation with static types definition and separated packages.

  • No dependencies, one small file
  • Easily auditable TypeScript/JS code
  • Check out all libraries: maybe, either, iterator,

Usage

npm install @sweet-monads/interfaces

import { Functor } from "@sweet-monads/interfaces";

class Container<T> implements Functor<T> {
  map<A>(fn: (i: T) => A): Container<A> {
    return new Container<A>();
  }
}

Available Interfaces

Functor

https://wiki.haskell.org/Functor

An abstract datatype Functor<A>, which has the ability for it's value(s) to be mapped over can become an instance of the Functor interface. That is to say, a new Functor, Functor<B> can be made from Functor<A> by transforming all of it's value(s), whilst leaving the structure of f itself unmodified.

Functors are required to obey certain laws in regards to their mapping. Ensuring instances of Functor obey these laws means the behaviour of fmap remains predictable.

Methods:

Functor#map
function map<A, B>(f: (x: A) => B): Functor<B>;
Minimal Complete Definition
map<A, B>(f: (x: A) => B): Functor<B>;
Functor Laws
Functors must preserve identity morphisms
const f = new SomeFunctorImplementation(); // for all functors
const id = x => x;

expect( f.map(id) ).toEqual( f );
Functors preserve composition of morphisms
declare function twice(x: number): number; // for all functions
declare function toString(x: number): string; // for all functions

const f = new SomeFunctorImplementation<number>();

expect( f.map(x => toString(twice(x))) ).toEqual( f.map(twice).map(toString) );

Alternative

https://en.wikibooks.org/wiki/Haskell/Alternative_and_MonadPlus

Several classes (Applicative, Monad) have "monoidal" subclasses, intended to model computations that support "failure" and "choice" (in some appropriate sense). The basic intuition is that empty represents some sort of "failure", and or represents a choice between alternatives. (However, this intuition does not fully capture the nuance possible; see the section on Laws below.) Of course, or should be associative and empty should be the identity element for it. Instances of Alternative must implement empty and or; some and many have default implementations but are included in the class since specialized implementations may be more efficient than the default.

Current implementation is not fully port of Alternative from Haskell, because we don't make the interface an child interface of Applicative and dropped empty static member for ability to implement Alternative for classes like Either.

Methods:

Alternative#or
function or<T>(arg: Alternative<T>): Alternative<T>;

Applicative

https://wiki.haskell.org/Applicative_functor

This module describes a structure intermediate between a functor and a monad (technically, a strong lax monoidal functor). Compared with monads, this interface lacks the full power of the binding operation chain.

Methods:

Applicative.from
function from<A>(x: A): Applicative<A>;
Applicative#apply
apply<A, B>(this: Applicative<(a: A) => B>, arg: Applicative<A>): Applicative<B>;
apply<A, B>(this: Applicative<A>, fn: Applicative<(a: A) => B>): Applicative<B>;
Minimal Complete Definition

Functor implementation.

static from<A>(x: A): Applicative<A>;
apply<A, B>(this: Applicative<(a: A) => B>, arg: Applicative<A>): Applicative<B>;
apply<A, B>(this: Applicative<A>, fn: Applicative<(a: A) => B>): Applicative<B>;
Applicative Laws
Identity Law
declare var x: Applicative<unknown>;
const id = x => x;

expect( SomeApplicative.from(id).apply(x) ).toEqual( x );
Homomorphism Law
declare var x: unknown;
declare var f: (x: unknown) => unknown;

expect( SomeApplicative.from(f).apply(x) ).toEqual( SomeApplicative.from(f(x)) );

Monad

https://wiki.haskell.org/Monad

Monads can be thought of as composable computation descriptions. The essence of monad is thus separation of composition timeline from the composed computation's execution timeline, as well as the ability of computation to implicitly carry extra data, as pertaining to the computation itself, in addition to its one (hence the name) output, that it will produce when run (or queried, or called upon). This lends monads to supplementing pure calculations with features like I/O, common environment, updatable state, etc.

Methods:

Monad#chain
function chain<A, B>(f: (x: A) => Monad<B>): Monad<B>;
Monad#join
function join<T>(this: Monad<Monad<T>>): Monad<T>;
Minimal Complete Definition

Applicative implementation.

chain<A, B>(f: (x: A) => Monad<B>): Monad<B>;
join<T>(this: Monad<Monad<T>>): Monad<T>;
Monad Laws
Left identity Law
declare var x: unknown;
declare function f(x: unknown): Monad<unknown>;

expect( SomeMonad.from(x).chain(f) ).toEqual( f(x) );
Right identity Law
declare var mx: Monad<unknown>;
declare function f(x: unknown): Monad<unknown>;

expect( mx.chain(SomeMonad.from) ).toEqual( mx );
Associativity Law
declare var mx: Monad<unknown>;
declare function f(x: unknown): Monad<unknown>;
declare function g(x: unknown): Monad<unknown>;

expect( mx.chain(x => f(x).chain(g)) ).toEqual( mx.chain(f).chain(g) );

License

MIT (c) Artem Kobzar see LICENSE file.

FAQs

Package last updated on 12 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc